From 50f1c501a87ef5f5650750dbeca797e833ec7c3a Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 14 Nov 2023 12:39:09 +0100 Subject: refactor(components): replace Sharing with SharingWidget component * all the widgets should have a coherent name * fix mailto uri * remove useless CSS * add tests --- src/pages/projets/[slug].tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/pages/projets/[slug].tsx') diff --git a/src/pages/projets/[slug].tsx b/src/pages/projets/[slug].tsx index 58c03ce..fa8f43a 100644 --- a/src/pages/projets/[slug].tsx +++ b/src/pages/projets/[slug].tsx @@ -13,7 +13,7 @@ import { getLayout, Link, PageLayout, - Sharing, + SharingWidget, Spinner, Heading, List, @@ -289,6 +289,11 @@ const ProjectPage: NextPageWithLayout = ({ project }) => { title, }); const schemaJsonLd = getSchemaJson([webpageSchema, articleSchema]); + const sharingWidgetTitle = intl.formatMessage({ + defaultMessage: 'Share', + id: 'HKKkQk', + description: 'SharingWidget: widget title', + }); return ( <> @@ -317,10 +322,11 @@ const ProjectPage: NextPageWithLayout = ({ project }) => { headerMeta={filteredHeaderMeta} withToC={true} widgets={[ - {sharingWidgetTitle}} media={[ 'diaspora', 'email', -- cgit v1.2.3